home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / AUDIO / AUDIO / UNIT1.DFM / UNIT1.txt
Text File  |  1996-08-20  |  1KB  |  65 lines

  1. object Form1: TForm1
  2.   Left = 200
  3.   Top = 106
  4.   Width = 418
  5.   Height = 179
  6.   Caption = 'Form1'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   OnCreate = FormCreate
  12.   OnDestroy = FormDestroy
  13.   PixelsPerInch = 96
  14.   TextHeight = 13
  15.   object Button1: TButton
  16.     Left = 8
  17.     Top = 40
  18.     Width = 75
  19.     Height = 25
  20.     Caption = 'StartRecord'
  21.     TabOrder = 0
  22.     OnClick = Button1Click
  23.   end
  24.   object Button2: TButton
  25.     Left = 8
  26.     Top = 64
  27.     Width = 75
  28.     Height = 25
  29.     Caption = 'StopRecord'
  30.     TabOrder = 1
  31.     OnClick = Button2Click
  32.   end
  33.   object Panel1: TPanel
  34.     Left = 0
  35.     Top = 0
  36.     Width = 410
  37.     Height = 33
  38.     Align = alTop
  39.     TabOrder = 2
  40.   end
  41.   object Button3: TButton
  42.     Left = 96
  43.     Top = 40
  44.     Width = 75
  45.     Height = 25
  46.     Caption = 'Playback'
  47.     TabOrder = 3
  48.     OnClick = Button3Click
  49.   end
  50.   object WaveIn1: TWaveIn
  51.     OnWaveInData = WaveIn1WaveInData
  52.     Samples = 14000
  53.     Stereo = False
  54.     Left = 16
  55.     Top = 96
  56.   end
  57.   object WaveOut1: TWaveOut
  58.     OnWaveOutDone = WaveOut1WaveOutDone
  59.     Samples = 14000
  60.     Stereo = False
  61.     Left = 48
  62.     Top = 96
  63.   end
  64. end
  65.